home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
c_edit.arc
/
GPRECT.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-09-08
|
215 b
|
19 lines
gprect(x2,y2)
int x2,y2;
{
extern int gdcur_x, gdcur_y;
int x1,y1;
x1 = gdcur_x;
y1 = gdcur_y;
gpmove(x1,y1);
gpline(x1,y2);
gpline(x2,y2);
gpline(x2,y1);
gpline(x1,y1);
}